home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libmagick9.postinst < prev    next >
Encoding:
Text File  |  2007-02-16  |  320 b   |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in 
  6.     configure)
  7.  
  8.     ;;
  9.     abort-upgrade| abort-remove|abort-deconfigure )
  10.         ;;
  11.     *)
  12.         echo "postinst called with unknown argument \`$1'" >&2
  13.     exit 0
  14.     ;;
  15. esac
  16.  
  17. # Automatically added by dh_makeshlibs
  18. if [ "$1" = "configure" ]; then
  19.     ldconfig
  20. fi
  21. # End automatically added section
  22.  
  23.